home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / THIN C 2.0 / Projects / name / name.c next >
Encoding:
C/C++ Source or Header  |  1991-04-05  |  196 b   |  11 lines  |  [TEXT/THIN]

  1. main()
  2. {
  3.     char    name[ 50 ];
  4.  
  5.     printf( "Type your first name, please: " );
  6.  
  7.     scanf( "%s", name );
  8.  
  9.     printf( "Welcome, %s.\n", name );
  10.     printf( "Your name is %d characters long.", strlen( name ) );
  11. }